blob: 1552196c73081c87470078254d0a755c9958071c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { Metadata } from 'next';
import { RealtimePage } from './RealtimePage';
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
const { websiteId } = await params;
return <RealtimePage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Real-time',
};
|